HTMLify
style.css
Views: 14 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | * { box-sizing: border-box; } body { background: rgb(26, 25, 25); font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; margin: 0; } .panel-container { background-color: #1d1c1c; box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); border-radius: 4px; font-size: 90%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; width: 700px; color: #fff; } .ratings-container { display: flex; margin: 20px 0; } .container { display: flex; justify-content: center; align-items: center; text-align: center; width: 500px; } .rating { flex: 1; padding: 20px; margin: 10px 5px; cursor: pointer; } .rating:hover, .rating.active { border-radius: 4px; background-color: #ccc; transition: 1s ease; } .rating .icon { width: 40px; font-size: 5rem; margin-right: 10px; } .rating small { color: #fff; display: inline-block; margin: 10px 0 0; } .btn { background: #fff; color: #000; border: 0; border-radius: 4px; padding: 12px 30px; cursor: pointer; outline: 0; } .btn:active { transform: scale(0.98); } /* JavaScript */ .heart { font-size: 3rem; margin-bottom: 10px; } |